home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_08 / 9n08012a < prev    next >
Text File  |  1991-07-08  |  184b  |  9 lines

  1. /* floor function */
  2. #include "xmath.h"
  3.  
  4. double (floor)(double x)
  5.         {       /* compute floor(x) */
  6.         return (_Dint(&x, 0) < 0 && x < 0.0 ? x - 1.0 : x);
  7.         }
  8.  
  9.